home *** CD-ROM | disk | FTP | other *** search
/ Aggression 1 / Aggression 1.adf / HDINSTALL < prev    next >
Text File  |  1992-09-02  |  1KB  |  54 lines

  1. ;
  2. ; Installscipt for Aggression issue #1...
  3. ;
  4.  
  5. echo "c____________________________________________________________________________"
  6. echo "                     Aggression Issue #1 - HD installer                     "
  7. echo " "
  8. echo ""
  9. echo "             AGGRESSION must be in drive DF0: while installing  "
  10. echo "              Remember to include either a : or / in the end.   "
  11. echo " "
  12. echo noline "Where do you want Aggression installed? "
  13. set >nil: path ?
  14. set aggr Aggression
  15. set ekte $path$aggr
  16. echo " "
  17. echo "Aggression will now be installed in:"
  18. echo " "
  19. echo $path DAggression
  20. echo " "
  21. echo noline "Is this okay? [Y/n] "
  22. set >nil: okay ?
  23. if $okay EQ "n"
  24.     echo " "
  25.     echo "Exiting..."
  26.     quit
  27. endif
  28. if $okay EQ "N"
  29.     echo " "
  30.     echo "Exiting..."
  31.     quit
  32. endif
  33. echo "cInstalling in"$path DAggression.
  34. echo " "
  35. echo "Installing main program..."
  36. makedir $ekte
  37. copy >nil: df0:aggression TO $ekte/
  38. echo " "
  39. echo "Installing articles..."
  40. echo " "
  41. makedir $ekte/Txt
  42. copy >nil: df0:Txt/#? $ekte/Txt
  43. echo "Installing clipart..."
  44. echo " "
  45. makedir $ekte/Clip
  46. copy >nil: df0:Clip/#? $ekte/Clip
  47. echo "Installing misc stuff..."
  48. echo " "
  49. makedir fonts:font0
  50. copy >nil: df0:fonts/font0.font fonts:
  51. copy >nil: df0:fonts/font0/#? fonts:font0
  52. echo "All done! Exiting..."
  53. quit
  54.